Function: show(domElementOrCSSSelector, stringEffectName, objectConfig, functionCompleteCallback) Description: Dynamically renders the specified element using a customizable animation effect. Returns: domElement, or $A object if chained. Requires module: "Animate" Note: The show() function utilizes Velocity to render animation effects. To view available transition effects, view the help doc at: Help/VelocityUI-Effects-Index.txt. Example: $A.import("Animate", { defer: true }, function() { $A.show(domElement); $A.show(domElement, "transition.fadeIn"); $A.show(".content-panel", "transition.swoopIn", function() { // Do something after rendering completes. }); $A.show([domElement1, domElement2], "transition.slideUpIn", { duration: 750, easing: "ease-in" }); });